dynamically typed - определение. Что такое dynamically typed
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое dynamically typed - определение

SET OF RULES THAT ASSIGN A PROPERTY CALLED TYPE TO VARIOUS CONSTRUCTS A COMPUTER PROGRAM CONSISTS OF, SUCH AS VARIABLES, EXPRESSIONS, FUNCTIONS OR MODULES
Dynamic typing; Static typing; Type systems; Type checking; Type-checking; Dynamically typed; Statically typed language; Dynamically typed language; Typed language; Dynamically-typed; Statically typed; Compile-time type checking; Statically-typed; Dynamicly typed; Dynamic data typing; Typed (programming languages); Static-typing (programming languages); Typechecker; Type checker; Type-checker; Static type; Static types; Type equivalence; Statically typed programming language; Statically-typed programming language; Dynamically-typed language; Existential type; Existential types; Type error; Typing discipline; Static type system; Optional typing; Typechecking; Static type-checking; Static type checking; Runtime type checking; Run-time type checking; Dynamic type checking; Optional type systems; Computational type system; Unified type system; Optional static typing; Dynamic type
Найдено результатов: 51
dynamically typed         
dynamic typing         
<programming> Enforcement of type rules at run time as opposed to compile time. Dynamic typing catches more errors as run-time exceptions than static typing. Tcl, Perl, PHP, Python and Visual Basic are examples of dynamically typed languages. A dynamically typed language may have strong typing or weak typing. (2004-07-20)
statically typed         
Typed assembly language         
SPECIFIC TYPE OF ASSEMBLY LANGUAGE
Typed Assembly Language; Typed assembler language
In computer science, a typed assembly language (TAL) is an assembly language that is extended to include a method of annotating the datatype of each value that is manipulated by the code. These annotations can then be used by a program (type checker) that processes the assembly language code in order to analyse how it will behave when it is executed.
static typing         
<programming> Enforcement of type rules at compile time rather than at run time. Static typing catches more errors at compile time than dynamic typing. Ada, C, C++, Haskell, Java, and ML are examples of statically typed languages. Statically typed languages may have strong typing or {weak typing}. (2004-07-20)
Typed lambda calculus         
TYPED FORMALISM THAT USES THE LAMBDA-SYMBOL (Λ) TO DENOTE ANONYMOUS FUNCTION ABSTRACTION
Typed lambda calculi
A typed lambda calculus is a typed formalism that uses the lambda-symbol (\lambda) to denote anonymous function abstraction. In this context, types are usually objects of a syntactic nature that are assigned to lambda terms; the exact nature of a type depends on the calculus considered (see kinds below).
DYnamic LANguage         
PROGRAMMING LANGUAGE THAT SUPPORTS MANIPULATING PROGRAM CONSTRUCTS AT RUNTIME
Dynamic language; Dynamic Languages; Dynamically typed programming language
<language> (Dylan) A simple object-oriented Lisp dialect, most closely resembling CLOS and Scheme, developed by Advanced Technology Group East at Apple Computer. Thomas is a Dylan compiler implemented in Scheme. See also Marlais. ["Dylan(TM) an Object-Oriented Dynamic Language", {Apple Computer}, Eastern Research and Technology, April 1992]. (1995-04-19)
Visualizing Energy Resources Dynamically on the Earth         
DOE ENERGY VISUALIZATION
User:Scottjones5600/sandbox; Draft:Visualizing Energy Resources Dynamically on the Earth
VERDE (Visualizing Energy Resources Dynamically on the Earth) is a visualization and analysis capability of the United States Department of Energy (DOE). The system, developed and maintained by Oak Ridge National Laboratory (ORNL), provides wide-area situational understanding of the U.
strongly typed         
PROGRAMMING LANGUAGE TYPE SYSTEMS
Strongly typed languages; Strongly typed language; Strong typing; Weakly-typed programming language; Strongly-typed (programming language); Strongly-typed programming languages; Weakly-typed programming languages; Strongly-typed (programming languages); Strongly-typed; Strongly typed; Weakly-typed (programming languages); Weakly-typed; Weakly typed; Weak typing; Strong type; Strong data typing; Loose typing; Strongly-typed programming language; Strongly typed programming language; Type strength; Weak and Strong typing; Loosely-typed; Weakly typed language; Loosely typed; Strictly typed
strong typing         
PROGRAMMING LANGUAGE TYPE SYSTEMS
Strongly typed languages; Strongly typed language; Strong typing; Weakly-typed programming language; Strongly-typed (programming language); Strongly-typed programming languages; Weakly-typed programming languages; Strongly-typed (programming languages); Strongly-typed; Strongly typed; Weakly-typed (programming languages); Weakly-typed; Weakly typed; Weak typing; Strong type; Strong data typing; Loose typing; Strongly-typed programming language; Strongly typed programming language; Type strength; Weak and Strong typing; Loosely-typed; Weakly typed language; Loosely typed; Strictly typed
<programming> Strict enforcement of type rules with no exceptions. Incorrect type usage can be detected either at run time or at compile time. Strong typing catches more type errors than weak typing, resulting in fewer hard errors. In a strongly typed language, conversion between types requires the use of explicit conversion functions as opposed to implicit type coercion. Typing strength is a continuum; ML is more strongly typed than Java, which is more strongly typed than C. Strong or weak typing is independent of the choice between static typing and dynamic typing. Among strongly typed languages, Ada, Java, Haskell and ML are statically typed, whereas Python and Ruby are dynamically typed. (2004-07-20)

Википедия

Type system

In computer programming, a type system is a logical system comprising a set of rules that assigns a property called a type (for example, integer, floating point, string) to every "term" (a word, phrase, or other set of symbols). Usually the terms are various constructs of a computer program, such as variables, expressions, functions, or modules. A type system dictates the operations that can be performed on a term. For variables, the type system determines the allowed values of that term. Type systems formalize and enforce the otherwise implicit categories the programmer uses for algebraic data types, data structures, or other components (e.g. "string", "array of float", "function returning boolean").

Type systems are often specified as part of programming languages and built into interpreters and compilers, although the type system of a language can be extended by optional tools that perform added checks using the language's original type syntax and grammar. The main purpose of a type system in a programming language is to reduce possibilities for bugs in computer programs due to type errors. The given type system in question determines what constitutes a type error, but in general, the aim is to prevent operations expecting a certain kind of value from being used with values for which that operation does not make sense (validity errors). Type systems allow defining interfaces between different parts of a computer program, and then checking that the parts have been connected in a consistent way. This checking can happen statically (at compile time), dynamically (at run time), or as a combination of both. Type systems have other purposes as well, such as expressing business rules, enabling certain compiler optimizations, allowing for multiple dispatch, and providing a form of documentation.